Skip to main content

NVM Essentials

Github Docs: https://github.com/nvm-sh/nvm

check version
node -v || node --version
list available version to download
nvm ls-remote
list installed versions of node (via nvm)
nvm ls
install specific version of node
nvm install 6.9.2
set defaul version of node
nvm alias default 6.9.2
switch version of node
nvm use 6.9.1